home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / render_foreign.ifx < prev    next >
Text File  |  2004-08-03  |  751b  |  43 lines

  1. /*
  2.  * Render_Foreign.ifx
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Render to a Foreign display format.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Frame number (1 - N)
  9.  *    Word(Arg(1),2) = Main filename ("-" if not specified)
  10.  *    Word(Arg(1),3) = Swap filename ("-" if not specified)
  11.  *    Word(Arg(1),4) = Sequence number
  12.  *    Word(Arg(1),5) = Total number of frames (N)
  13.  *
  14.  * Returns:
  15.  *    0 if successful, non-zero on failure
  16.  *
  17.  */
  18.  
  19. OPTIONS RESULTS
  20.  
  21. /* gracefully exit if no buffer */
  22. GetMain
  23. IF rc ~= 0 THEN EXIT 0
  24.  
  25. framenum = Word(Arg(1),1)
  26.  
  27. base  = 'Autofx_RendForeign_'
  28.  
  29. lockpal  = GETCLIP(base||'LockPal')
  30.  
  31. IF lockpal THEN DO
  32.    IF framenum = 1 THEN
  33.       LockRange 0 OFF
  34.    ELSE
  35.       LockRange 0 ON
  36.    END
  37. ELSE
  38.    LockRange 0 OFF
  39.  
  40. Render Go
  41.  
  42. EXIT
  43.